From b10bfe128f8ab753137f1bd313982943df79af79 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 3 Aug 2015 22:35:36 -0400 Subject: [PATCH] GtkButton: Pick up images that are set early We were failing to construct the child if an image was set before constructed (e.g. in the init() function of a button subclass). https://bugzilla.gnome.org/show_bug.cgi?id=753048 --- gtk/gtkbutton.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkbutton.c b/gtk/gtkbutton.c index bb90dafe3d..8abbcebe31 100644 --- a/gtk/gtkbutton.c +++ b/gtk/gtkbutton.c @@ -720,7 +720,7 @@ gtk_button_constructed (GObject *object) priv->constructed = TRUE; - if (priv->label_text != NULL) + if (priv->label_text != NULL || priv->image != NULL) gtk_button_construct_child (button); } -- 2.30.2